#userProfile{
    display: none;
}

.login-background {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
    flex-direction: column;
}

.login-container {
    background-color: #ffffff;
    padding: 40px;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.login-form {
    width: 100%;
}

.login-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.login-info {
    flex: 1;
    text-align: left;
    padding-right: 30px;
    border-right: 1px solid #e0e0e0;
    position: relative;
}

.logo-wrapper {
    display: none; /* Ya no necesitamos este elemento */
}

.login-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight {
    color: #e74c3c;
    font-weight: 800;
}

.login-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
}

.login-description {
    color: #5d6778;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #5d6778;
    font-weight: 500;
    margin-left: 60px;
}

.feature-icon {
    display: inline-block;
    margin-right: 10px;
    width:40px;
}

.login-fields {
    flex: 1;
    padding-left: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    font-size: 0.9rem;
    color: #5d6778;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3498db;
}

.flash-messages {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.flash {
    padding: 12px;
    font-size: 0.9rem;
    border-radius: 6px;
    margin-top: 10px;
}

.flash.danger {
    background-color: #f8d7da;
    color: #721c24;
}

.flash.success {
    background-color: #d4edda;
    color: #155724;
}

.flash.info {
    background-color: #d1ecf1;
    color: #0c5460;
}

.logotipoInferior {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logotipoInferior a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.logotipoInferior img {
    height: 25px;
    margin-left: 5px;
    margin-right: 2px;
}

/* Añadir estos estilos al archivo CSS */
.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.header-left, .header-right {
    flex: 1;
}

.header-left {
    text-align: left;
}

.header-right {
    text-align: right;
}

/* Para dispositivos móviles */
@media (max-width: 768px) {
    .login-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-left, .header-right {
        text-align: center;
    }
    
    .login-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .login-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
        text-align: center;
    }
    
    .login-fields {
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
    }
    
    .login-container {
        padding: 30px 20px;
    }
}

